DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / View<T> Class / Union Method
A collection (usually, a view) whose distinct elements form the second set for the union.

In This Topic
    Union Method (View<T>)
    In This Topic
    Set union of two views.
    Syntax
    'Declaration
     
    Public Function Union( _
       ByVal second As IObservableSource(Of T) _
    ) As View(Of T)
    public View<T> Union( 
       IObservableSource<T> second
    )

    Parameters

    second
    A collection (usually, a view) whose distinct elements form the second set for the union.

    Return Value

    The view that contains the elements from both input views, excluding duplicates.
    Remarks
    This method excludes duplicates from the result set. This is different behavior to the Concat method, which returns all the elements in the input sequences including duplicates.
    See Also